home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / os2 / zoc205.zip / INSTALL.FIL / SCRIPT / RXSAMPLE / MANUAL / LOGIN.RX < prev    next >
Text File  |  1994-11-01  |  805b  |  34 lines

  1. /* REXX-Program: LOGIN.RX */
  2.  
  3. 'CLS'                          /* clear screen */
  4.  
  5. 'TIMEOUT 60'       /* max. time to wait for something */
  6.  
  7. 'WAIT "Press <ESC>"'
  8. 'SEND "^["'    /* ^[ is the code for the ESC key */
  9.  
  10. 'WAIT "your name?"'
  11. 'SEND "Joe User^M"'  /* don't forget ^M after the name */
  12.  
  13. 'WAIT "[Yes/No]"'
  14. 'SEND "Yes^M"'
  15.  
  16. 'WAIT "password?"'
  17. 'SEND "secret^M"'
  18.  
  19. /* the next command means that ZOC should 
  20.    automatically send a ^M (Enter) every time 
  21.    the text "Press Enter to continue" arrives.
  22.    This way all the news screens are skipped,
  23.    no matter how many of them appear */
  24. 'REPLY "Enter" "^M"'
  25.  
  26.  
  27. /* Wait for the main menu */
  28. 'WAIT "Main Menu"'
  29.  
  30.  
  31. /* Cancel the previous REPLY command so ZOC won't 
  32.    kick in if we received that text later */
  33. 'REPLY "Enter"'
  34.